@charset "utf-8";
/* CSS Document */

 body {
            background-color: none;
            margin: 0;
            overflow-x: hidden;
        }
        h1 {
            color: #231942;
            text-align: center;
			font-size: 48px; 
        }
        header {
            display: flex;
			text-align: center;
            justify-content: space-between;
            padding: 10px 20px;
            color: #231942;
			font-size: 48px; 
        }

.button-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly; 
  align-items: center; 
  gap: 10px;
}

.logo {
    font-size: 18px;
    color: #231942;
}



#box1 {
  font-size: 96px; 
  color: #231942;
  display: flex;  
	margin-top: 25px; 
  align-items: center;
  justify-content: center;
  text-align: center; 
 text-decoration: bold; 
  background: none; 
}



/* Grid Container */
.grid-container {
  display: grid;  
	grid-template-columns: repeat(30, 1fr);  
  grid-auto-rows: 150px;  
  gap: 20px;  
  margin: 50px;
}

/* General Grid Item */
.grid-item {
  display: flex;  
  align-items: center;  
  justify-content: center;  
  color: white;
  font-size: 24px;
}

/* Project Description*/
.item1 {
	display: flex;
    flex-direction: column;
	background-color: none;
  grid-row: 1 / span 7;
  grid-column: 1 / span 10; 
font-size: 24px;
	 margin-bottom: 15px; 
    line-height: 1.6;
	padding: 20px;
	color: #231942;
}

/* planning stage*/
.item2 {
	background-color: none; 
	grid-row: 1 / span 1;
	grid-column: 11 / span 20;
	font-size: 60px; 
	color: #231942;
	text-align: center;
}
.item3{
	  grid-row: 2 / span 3;
  grid-column: 11 / span 20;
  background-image: url('../images/Illustration4.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.item4{
	  grid-row: 5 / span 3;
  grid-column: 11 / span 20;
  background-image: url('../images/Illustration5.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*FINAL DESIGN*/ 

.item5 {
	background-color: none; 
	grid-row: 8 / span 1;
	grid-column: 6 / span 20;
	font-size: 60px; 
	color: #231942;
	text-align: center;
}

.item6{
	  grid-row: 9 / span 3;
  grid-column: 6 / span 20;
  background-image: url('../images/Parade 1.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.item7{
	  grid-row: 12 / span 3;
  grid-column: 6 / span 20;
  background-image: url('../images/Parade Final.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*Execution*/

.item8 {
	background-color: none; 
	grid-row: 15 / span 1;
	grid-column: 6 / span 20;
	font-size: 60px; 
	color: #231942;
	text-align: center;
}

/*Row 1*/ 

.item9{
	  grid-row: 16 / span 3;
  grid-column: 6 / span 20;
  background-image: url('../images/1 Parade Execution.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*Row 2*/

.item10{
	  grid-row: 19 / span 3;
  grid-column: 1 / span 10;
  background-image: url('../images/2 Parade Execution.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
	
}
.item11{
	  grid-row: 19 / span 3;
  grid-column: 11 / span 10;
  background-image: url('../images/3 Parade Execution.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.item12{
	  grid-row: 19 / span 3;
  grid-column: 21 / span 10;
  background-image: url('../images/4 Parade Execution.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Lightbox Modal */
.lightbox {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox-content {
  width: 80%;  /* Adjust width for the image */
  height: 80%; /* Adjust height for the image */
  max-width: 90%;  /* Restrict maximum width */
  max-height: 90%; /* Restrict maximum height */
  background-size: contain; 
  background-position: center;
  background-repeat: no-repeat;
}


/* Close Button */
.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 70px;
  cursor: pointer;
}

      .menu-container {
            position: relative;
        }
        .menu-button {
            background: none;
            color: #231942;
            border: #231942;
            padding: 10px 15px;
            cursor: pointer;
            font-size: 16px;
            border-radius: 5px;
			margin-left: 35px; 
			font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
        }
        .dropdown-menu {
            display: none;
            position: absolute;
            background: #FFFFFF;
            border-radius: 5px;
			text-decoration: none;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            list-style: none;
            padding: 10px 0;
            min-width: 150px;
        }

        .dropdown-menu a {
            color: black;
  			padding: 12px 16px;
  			text-decoration: none;
  			display: block;
			font-size: 15px; 
        }
        .dropdown-menu a:hover {
            background: #F0F0F0;
			text-decoration: none; 
        }
 
     
        .menu-container:hover .dropdown-menu {
            display: block;
        }